home *** CD-ROM | disk | FTP | other *** search
- --= SID = SIMTEL20 Ada Software Repository Item Description File = SID =--
- -- UNIT NAME : LINKED_LIST
- -- VERSION : 1.0
- -- REVIEW CODE :
- -- DDN ADDRESS : RCONN@SIMTEL20
- -- AUTHOR : Richard Conn
- -- : Texas Instruments
- -- : PO Box 801, Mail Stop 8007
- -- : McKinney, TX 75069
- -- COPYRIGHT : (c) 1984 Richard Conn
- -- DATE CREATED : OCTOBER 2, 1984
- -- DATE RELEASED : NOVEMBER 29, 1984
- -- DATE LAST UPDATED : CONN NOVEMBER 29, 1984
- -- LOCATION : C2MUG
- -- LOCATION : ASR
- -- ENVIRONMENT : DEC VAX/VMS, DEC Ada
- --= CLASSIFICATION ===============================================--
- -- CATEGORY LEVEL 1 : COMPONENTS
- -- CATEGORY LEVEL 2 : LINKED_LISTS
- -- CATEGORY LEVEL 3 : Doubly-Linked List
- -- CATEGORY LEVEL 4 :
- -- KEYWORD : DOUBLY-LINKED LIST
- -- KEYWORD : LIST MANIPULATION
- -- INDEX : List
- -- INDEX : List Manipulation
- -- INDEX : Manipulation, List
- -- INDEX : Doubly-Linked List
- -- INDEX : List, Doubly-Linked
- -- TAXONOMY :
- -- DEPENDENCIES :
- -- SEE ALSO :
- --= FILE LISTING ===============================================--
- -- FILE SPECS : PD:<ADA.COMPONENTS>LIST.*
- -- DIRECTORY DISPLAY :
- -- Directory PD:<ADA.COMPONENTS>
- -- File Name Byte Count Line Count
- -- --------------- ---------- ----------
- -- LIST.ADA 17483 498
- -- LIST.PRO 3397 72
- -- =============== ========== ==========
- -- 2 Files 20880 570
- --= ABSTRACT ===============================================--
- -- This package provides a number of routines which can be used
- -- to manipulate a doubly- linked list. See the visible section for a
- -- rather complete set of documentation on the routines.
- --
- -- Each element of the list is of the following structure:
- --
- -- RECORD
- -- contents: element_object; -- data
- -- next: element_pointer; -- ptr
- -- previous: element_pointer; -- ptr
- -- END RECORD;
- --= REVISION HISTORY ===============================================--
- --
- -- DATE VERSION AUTHOR HISTORY
- -- 11/29/84 1.0 Richard Conn Initial Release
- --= RELEASE NOTICE ===============================================--
- -- This prologue must be included in all copies of this software.
- --
- -- This software is copyright by the author.
- --
- -- This software is released to the Ada community.
- -- This software is released to the Public Domain (note:
- -- software released to the Public Domain is not subject
- -- to copyright protection).
- -- Restrictions on use or distribution: NONE
- --= DISCLAIMER ===============================================--
- -- This software and its documentation are provided "AS IS" and
- -- without any expressed or implied warranties whatsoever. No warranties
- -- as to performance, merchantability, or fitness for a particular
- -- purpose exist.
- -- The user is advised to test the software thoroughly before
- -- relying on it. The user must assume the entire risk and liability of
- -- using this software. In no event shall any person or organization of
- -- people be held responsible for any direct, indirect, consequential or
- -- inconsequential damages or lost profits.
- --======================================================================--
-